Socket
Socket
Sign inDemoInstall

npm-bundled

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npm-bundled

list things in node_modules that are bundledDependencies, or transitive dependencies thereof


Version published
Weekly downloads
9.1M
decreased by-2.8%
Maintainers
2
Weekly downloads
 
Created

What is npm-bundled?

The npm-bundled package is a utility that lists all the packages that have been bundled in a given package. It is particularly useful for analyzing and managing dependencies in Node.js projects, ensuring that you understand which packages are included in your bundle.

What are npm-bundled's main functionalities?

List bundled packages

This feature allows you to list all npm packages that are bundled within a specific project. The function takes a path to the project and a callback function that receives an error or the list of bundled packages.

const npmBundled = require('npm-bundled');

npmBundled({ path: '/path/to/your/project' }, function (err, list) {
  if (err) {
    console.error('Error:', err);
    return;
  }
  console.log('Bundled packages:', list);
});

Other packages similar to npm-bundled

FAQs

Package last updated on 21 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc